arm64: fix boot stability issues #136
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Fixes ARM64 boot stability by removing logging from critical paths that can cause deadlock when timer interrupts fire while holding the logger lock.
Key changes:
preempt_disable()(timer interrupt + logger lock = deadlock)FdTable::clone()which runs during fork()__bss_start/__bss_endsymbols outside NOLOAD section (symbols inside NOLOAD sections not visible to linker)Root cause: Logging in critical sections where interrupts are enabled creates a window where a timer interrupt can fire while the logger lock is held. Any context switch or interrupt handler trying to log then deadlocks, corrupting memory and causing wild pointer accesses (e.g., the data abort at physical address 0x8000_0345 which doesn't exist in QEMU's RAM).
Test plan
./docker/qemu/run-aarch64-boot-test-strict.shpasses with ~100% success rate (60 consecutive boots, all showed "breenix>" prompt)🤖 Generated with Claude Code